home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 44
/
Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso
/
-in_the_mag-
/
basics
/
amos
/
intuiextend20b.lha
/
distribution
/
exemples
/
RtFileReq.asc
< prev
next >
Wrap
Text File
|
1980-03-07
|
1KB
|
50 lines
'**************************************
' *
' IntuiExtend.Lib 1.4/@1995-96 *
' *
' by CIERP Philippe. *
' *
' from AMIGAzette 83 *
' *
'**************************************
'
' Command
' -Rt Lib Open
' -Rt File Req
' -Rt Get Name$
' -Rt Get Dir$
' -Rt Lib Close
'
Screen Open 0,640,256,2,$8000
Curs Off : Flash Off : Cls 0
Colour 1,$FFF : Print
'
Amos To Back
'Ouverture de la reqTools.library
E=Rt Lib Open
'Ouverture impossible
If E=0 Then End
'
'Sauvegarde du 'PathAmos'
_DIR$=Dir$
'Appel au FileRequester
RR=Rt File Req("Selectionnez un fichier SVP...",_DIR$,"Sans nom...","",2)
'
'Ok=1 / Cancel/Erreur/CloseGadget=0
If RR=1
Print "Bouton 'Ok' selectionné"
Print "Fichier:";Rt Get Name$
Else
Print "Bouton 'Cancel' selectionné"
End If
'
'Replacer le 'PathAmos'
Dir$=Rt Get Dir$
Print
Print "Repertoire:";Dir$
'
'Refermer la librairie
Rt Lib Close
Amos To Front
Wait Key